home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / program / gcc / ixemul41.lha / ixemul-41.3 / gnulib-soft-float / Makefile.in < prev    next >
Makefile  |  1995-05-23  |  1KB  |  60 lines

  1. #### Start of system configuration section. ####
  2.  
  3. srcdir =    @srcdir@
  4. VPATH =        @srcdir@
  5.  
  6. # Common prefix for machine-independent installed files.
  7. prefix =    @prefix@
  8.  
  9. # Common prefix for machine-dependent installed files.
  10. exec_prefix =    @exec_prefix@
  11.  
  12. bindir =    $(exec_prefix)/bin
  13. libdir =    $(exec_prefix)/Sys/libs
  14.  
  15. INSTALL =    @INSTALL@
  16. INSTALL_DATA =    @INSTALL_DATA@
  17.  
  18. CC =        @CC@
  19.  
  20. CFLAGS =    @CFLAGS@
  21. LDFLAGS =    @LDFLAGS@
  22.  
  23. RANLIB =    @RANLIB@
  24. AR =        ar
  25.  
  26. #### End system configuration section ####
  27.  
  28. FLAVOR_CFLAGS =    -m$(CPU) -m$(FPU)
  29. OTHER_CFLAGS =    -fomit-frame-pointer
  30. ALL_CFLAGS =    $(CFLAGS) $(FLAVOR_CFLAGS) $(OTHER_CFLAGS) $(INCS) $(DEFS)
  31.  
  32. DEFS =        -DIEEE_SINGBAS -DHAVE_ATEXIT
  33. INCS =        -I$(srcdir) -I$(srcdir)/../gnulib -I$(srcdir)/../library -I$(srcdir)/../include
  34. LIB =        libgnu.a
  35. SHELL =        /bin/sh
  36.  
  37. .c.o:
  38.         $(CC) $(ALL_CFLAGS) -c $< -o $@
  39.  
  40. SRC =        adddf3.c addsf3.c cmpdf2.c cmpsf2.c divdf3.cdivsf3.c divsi3.c \
  41.         extendsfdf2.c fabs.c fixdfsi.c fixunsdfsi.c floatsidf.c frexp.c \
  42.         ldexp.c modf.c modsi3.c muldf3.c mulsf3.c mulsi3.c negdf2.c \
  43.         negsf2.c subdf3.c subsf3.c truncdfsf2.c udivsi3.c umodsi3.c
  44.  
  45. OBJ =        adddf3.o addsf3.o cmpdf2.o cmpsf2.o divdf3.o divsf3.o divsi3.o \
  46.         extendsfdf2.o fabs.o fixdfsi.o fixunsdfsi.o floatsidf.o frexp.o \
  47.         ldexp.o modf.o modsi3.o muldf3.o mulsf3.o mulsi3.o negdf2.o \
  48.         negsf2.o subdf3.o subsf3.o truncdfsf2.o udivsi3.o umodsi3.o
  49.  
  50. $(LIB):        $(OBJ)
  51.         rm -f $@
  52.         $(AR) rv $@ $(OBJ)
  53.         $(RANLIB) $@
  54.  
  55. clean:
  56.         rm -f *!
  57.  
  58. clobber:    clean
  59.         rm -f $(OBJ) $(LIB)
  60.